home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / DBL Pascal Library / INIT Shell Folder / INIT Shell ƒ / Shell ƒ / INITShellGlobals.p < prev    next >
Text File  |  1990-05-28  |  321b  |  16 lines

  1. unit INITShellGlobals;
  2. {Copyright © 1990, David B. Lamkins}
  3. {All rights reserved.}
  4.  
  5. interface
  6.  
  7.     type
  8.         INITGlobals = record
  9.         {Permanent globals for patches and VBL tasks should be declared here.}
  10.             end;
  11.         INITGlobalsPtr = ^INITGlobals;
  12.         INITGlobalsHandle = ^INITGlobalsPtr;
  13.  
  14. implementation
  15.     {Intentionally empty.}
  16. end.